body.registration-page {
  background: #1f1f1f;
  overflow-x: hidden;
}


/* ============================================
   Connect Section
   ============================================ */
.connect-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 510px;
}

.connect-image {
  min-height: 510px;
  background-image: url('../images/trials.jpg');
  background-size: cover;
  background-position: center;
}

.connect-panel {
  display: flex;
  align-items: center;
  background: #1f1f1f;
  color: #ffffff;
  padding: 45px 6vw;
  box-shadow: inset 5px 0 0 #d0a24a;
}

.connect-form {
  width: 100%;
  max-width: 450px;
}

.connect-form h2 {
  margin-bottom: 21px;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(190, 138, 45, 0.35);
}

.connect-intro {
  margin: -10px 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.connect-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.connect-form > input {
  width: 100%;
  height: 35px;
  margin-bottom: 18px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #111111;
  font-size: 13px;
  padding: 0 11px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.connect-form > input:focus,
.country-combo input:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(208, 162, 74, 0.45);
}

.country-combo {
  position: relative;
  margin-bottom: 18px;
}

.country-combo input {
  width: 100%;
  height: 35px;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  padding: 0 42px 0 11px;
  background: #ffffff;
  color: #111111;
  font-size: 13px;
  transition: box-shadow 0.2s ease;
}

.country-toggle {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 35px;
  margin: 0;
  padding: 0;
  border: 0;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
}

.country-toggle::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #111111;
}

.country-options {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  z-index: 10;
  display: none;
  max-height: 210px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.28);
}

.country-options.is-open {
  display: block;
}

.country-options li {
  cursor: pointer;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.country-options li:hover {
  background: #f0f0f0;
}

.connect-form h3 {
  margin: 8px 0 21px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
  color: #d0a24a;
}

.connect-form .check-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.connect-form .check-row input {
  width: 14px;
  height: 14px;
  margin: 2px 0 0;
  accent-color: #d0a24a;
}

.connect-form button[type="submit"] {
  margin: 6px 0 21px;
  border: 0;
  background: linear-gradient(180deg, #d0a24a, #8d621d);
  color: #020b0f;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  height: 38px;
  padding: 0 21px;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.connect-form button[type="submit"]:hover {
  background: linear-gradient(180deg, #e3b960, #a17324);
  transform: translateY(-2px);
}

.connect-note {
  max-width: 440px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
}

.connect-note a {
  color: #d0a24a;
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .connect-section {
    grid-template-columns: 1fr;
  }

  .connect-image {
    min-height: 315px;
  }

  .connect-panel {
    padding: 35px 24px;
  }

  .registration-frame {
    height: 940px;
  }
}

@media (max-width: 480px) {
  .connect-image {
    min-height: 225px;
  }

  .connect-panel {
    padding: 29px 18px;
  }

  .registration-frame {
    height: 920px;
  }

  .connect-form h2 {
    font-size: 24px;
  }

  .connect-form h3 {
    font-size: 22px;
  }
}

